home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / comms_w / inetv21.zip / IPFILTER.C_ / IPFILTER.C
C/C++ Source or Header  |  1994-10-16  |  664b  |  28 lines

  1. /*
  2.  *      Name:           ipfilter.c
  3.  *      Functions:      Sample IP Filter Routine.
  4.  *      Algorithm:
  5.  *        This routine provides function to monitor and
  6.  *        filter packets forwarded between interfacesd.
  7.  *      Routines:
  8.  *        ipfilter
  9.  *      Input:
  10.  *        ip: far pointer to IP packet.
  11.  *      Output:
  12.  *        TRUE: Do not forward packet.
  13.  *        FALSE: Forward packet.
  14.  *      Author:         L Vuong         9/94
  15.  *      Modifications:
  16.  */
  17. /*
  18.  *    Copyright (c) 1994 Core Systems. All Rights Reserved.
  19.  */
  20. #include <windows.h>
  21. #include <winsock.h>
  22. #include <ipfilter.h>
  23.  
  24. BOOL FAR PASCAL _export ipfilter(struct ip FAR *ipp)
  25. {
  26.     return(FALSE);
  27. }
  28.